home *** CD-ROM | disk | FTP | other *** search
/ The National Palace Museum Experience / The National Palace Museum Experience.iso / Start.exe / Start.dxr / 00006.ls < prev    next >
Encoding:
Text File  |  1998-10-29  |  403 b   |  18 lines

  1. on exitFrame
  2.   movesprite(2, 320, 30)
  3. end
  4.  
  5. on movesprite spriteNum, maxhoriz, step
  6.   puppetSprite(spriteNum, 1)
  7.   set horizpos to the locH of sprite spriteNum
  8.   if horizpos > maxhoriz then
  9.     set newloc to horizpos - step
  10.     if newloc > 320 then
  11.       set the locH of sprite spriteNum to horizpos - step
  12.     else
  13.       set the locH of sprite spriteNum to 320
  14.     end if
  15.     go(the frame)
  16.   end if
  17. end
  18.